home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_10_09
/
1009020a
< prev
next >
Wrap
Text File
|
1992-07-07
|
257b
|
21 lines
// LISTING 1
#ifndef JMPSTACK_H
#define JMPSTACK_H
#include <setjmp.h>
class JmpStack {
enum {SIZE=100};
jmp_buf stack[SIZE];
int current;
public:
JmpStack() {current = -1;}
jmp_buf& operator++(); // push
jmp_buf& operator--(); // pop
};
#endif